home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Game Master (3rd Edition)
/
The Game Master 3rd edition.iso
/
files
/
game_cga
/
cgagame5
/
menu.bat
< prev
next >
Wrap
DOS Batch File
|
1988-12-29
|
629b
|
50 lines
echo off
:top
echo
cls
type menu
echo Type the correct letter of the program you wish to run.
pcs
if errorlevel= 103 goto invalid
if errorlevel= 102 goto f
if errorlevel= 101 goto e
if errorlevel= 100 goto d
if errorlevel= 99 goto c
if errorlevel= 98 goto b
if errorlevel= 97 goto a
if errorlevel=27 goto end
:invalid
cls
echo Invalid Entry
pause
goto top
:A
cls
skiing1
goto top
:B
cls
seahunt
goto top
:C
cls
life2
goto top
:D
cls
3dtictac
goto top
:E
cls
gomoku
goto top
:F
cls
21
goto top
:end
echo
cls
echo Type MENU to start.